Skip to content

feat(link): add URL reachability checking#104

Merged
corylanou merged 4 commits into
mainfrom
issue-101-feat-add-link-validation-url-reachability-checking
Mar 16, 2026
Merged

feat(link): add URL reachability checking#104
corylanou merged 4 commits into
mainfrom
issue-101-feat-add-link-validation-url-reachability-checking

Conversation

@corylanou

Copy link
Copy Markdown
Member

Summary

Add opt-in link validation that checks whether <a href> URLs in hype documents are reachable, complementing existing local asset validation (images, source files).

Related Issue

Closes #101

Changes

  • Add LinkCheckConfig struct with configurable timeout, accepted status codes, exclude patterns, rate limiting, and max redirects
  • Add LinkValidator with HEAD-first/GET-fallback HTTP checking, per-URL caching, per-host rate limiting via x/time/rate, and 429 Retry-After support
  • Add LinkCheckError type for structured error reporting
  • Add Execute() method to Link type, making it implement ExecutableNode — only active when link checking is enabled
  • Add LinkCheck and LinkValidator fields to Parser, propagated through Sub() for sub-directory parsing
  • Add CLI flags to hype export: --check-links, --link-timeout, --link-exclude, --link-rate

Test Plan

  • Tests pass (go test ./... — pre-existing snapshot test failure unrelated to this PR)
  • 17 new tests covering: success, HEAD→GET fallback, 404 errors, non-HTTP scheme skipping, exclude patterns, caching, rate limiting, timeout, 429 retry, redirect following, too-many-redirects, Link.Execute disabled/enabled/non-HTTP/no-href
  • Manually tested with hype documents containing links

Breaking Changes

None — link checking is opt-in (off by default). No existing behavior changes.

Add opt-in link validation that checks whether URLs in documents are
reachable via HTTP. Implements HEAD-first-then-GET checking with
per-host rate limiting, URL caching, configurable timeouts, exclude
patterns, redirect following, and 429 retry-after support.

Closes #101

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 16a6a925cc

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread link_validator.go Outdated
Comment thread link_validator.go
- Fix exclude patterns to match nested URL paths using prefix matching
- Deduplicate concurrent checks for the same URL via inflight map
- Reject non-positive link-rate values with safe defaults
- Fall back to GET when HEAD returns non-accepted status (not just 405)
- Normalize protocol-relative URLs (//example.com) to https
- Fix off-by-one in redirect limit (allow exactly MaxRedirects hops)
- Merge partial configs with defaults in NewLinkValidator
- Apply link timeout to rate-limit waits and retry-after sleeps
- Clear parser link-check state when flag is off
@corylanou
corylanou merged commit 11604e5 into main Mar 16, 2026
3 checks passed
@corylanou
corylanou deleted the issue-101-feat-add-link-validation-url-reachability-checking branch March 16, 2026 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

feat: add link validation (URL reachability checking)

1 participant